home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / dt / winptr.zip / WINPTR.H < prev    next >
Text File  |  1992-01-03  |  834b  |  38 lines

  1. //------------------------------------------------------------------------
  2. //
  3. //  WINPTR.H -- Include file for WINPTR.C
  4. //
  5. //  (c) Douglas Boling, 1991
  6. //
  7. //------------------------------------------------------------------------
  8.  
  9. //
  10. //Structures
  11. //
  12. typedef struct {
  13.     WORD    wMoveTrig;
  14.     WORD    wTimeTrig;
  15.     WORD    wCursorID;
  16.     BOOL    bEnabled;
  17.     BOOL    bArrowOnly;
  18. } HOOKSTAT;
  19. typedef HOOKSTAT far *PHOOKSTAT;
  20.  
  21. //
  22. // Dialog Box IDs
  23. //
  24.  
  25. #define IDD_ARROWONLY            100
  26. #define IDD_MOVETRIG             101
  27. #define IDD_TIMETRIG             102
  28. #define IDD_MOVETEXT             103
  29. #define IDD_TIMETEXT             104
  30.  
  31. #define IDD_ENABLE               110
  32. #define IDD_SETCUR               111
  33. #define IDD_SETTRIG              112
  34. #define IDD_ABOUT                113
  35. #define IDD_EXIT                 114
  36.  
  37. 
  38.